Finds items with keys less than the specified value.
Namespace:
C1.LiveLinq.Indexing.SearchAssembly: C1.LiveLinq (in C1.LiveLinq.dll)
Syntax
C# |
---|
IndexQuery<T> FindLess( Object key, bool inclusive, Order order ) |
Visual Basic |
---|
Function FindLess ( _ key As Object, _ inclusive As Boolean, _ order As Order _ ) As IndexQuery(Of T) |
Parameters
- key
- Type: System..::..Object
Maximum key value to search for.
- inclusive
- Type: System..::..Boolean
If true, the result includes items with the specified key value. Otherwise, the result only includes those with keys strictly less than the specified value.
- order
- Type: C1.LiveLinq..::..Order
Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required).